-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
port toranj test-013-off-mesh-route-traffic.py #67
Conversation
Codecov Report
@@ Coverage Diff @@
## master #67 +/- ##
==========================================
- Coverage 41.72% 41.61% -0.12%
==========================================
Files 37 37
Lines 3851 3864 +13
==========================================
+ Hits 1607 1608 +1
- Misses 2244 2256 +12
Continue to review full report at Codecov.
|
|
||
dst.receive_udp_data(port, message, timeout) | ||
time.sleep(delay) | ||
src.send_udp_data(dst_address, port, message, src_address) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not blocked by issue #68
@@ -446,7 +446,8 @@ def parse_list(list_string): | |||
# For each line, skip the first two characters (which are `\t"`) and last character (`"`), then split the string | |||
# using whitespace as separator. The first entry is the IPv6 address. | |||
# | |||
return [line[2:-1].split()[0] for line in list_string.split("\n")[1:-1]] | |||
# return [line[2:-1].split()[0] for line in list_string.split("\n")[1:-1]] | |||
return [line[2:-1].split()[0] for line in list_string.split("\n")[1:-2]] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please run other test cases for this change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested with other relevant tests(slaac tests, inform_parent,parent_reset_child_recovery, child_attach_with_multiple_ip_addr) all are PASS.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
No description provided.